-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor S3 store creation #76
Refactor S3 store creation #76
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
getting there!
minimalkv/_get_store.py
Outdated
if old_wrappers: | ||
warnings.warn( | ||
""" | ||
Using wrappers as part of the scheme is deprecated. Please specify wrappers as part of the fragment instead, | ||
e.g. "s3://...#wrap:readonly+urlencode" instead of "s3+readonly+urlencode://...". | ||
""", | ||
DeprecationWarning, | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was already previously deprecated, right? It's nothing we've introduced in this PR, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was no warning given previously, so we should probably keep it like that for now. I removed the warning 👍🏼
Co-authored-by: Uwe L. Korn <xhochy@users.noreply.github.com>
…into s3-store-creation
Boto3Store
andBotoStore
) to the S3FSStoreIf the changes in this PR look good, I will create separate PRs for the other stores from #71.
docs/changes.rst
entry